home *** CD-ROM | disk | FTP | other *** search
/ PC Open 93 / PC Open 93 CD 2.bin / PDF / webdeveloper / lezione_2 / annoetarisposta.asp < prev    next >
Encoding:
Text File  |  2003-10-25  |  383 b   |  21 lines

  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2.  
  3. <html>
  4. <head>
  5.     <title>Pagina che richiede nome e anno di nascita</title>
  6. </head>
  7.  
  8. <body>
  9.  
  10. <%
  11.     Dim anno
  12.     Dim eta
  13.     anno = cint(request.QueryString("anno"))
  14.     eta = Year(Now()) - anno
  15. %>
  16.  
  17. Ciao <%=request.QueryString("nome")%>, hai <%=eta%> anni.
  18.  
  19. </body>
  20. </html>
  21.